golang.org/x/net/http2.http2Config.MaxUploadBufferPerConnection (field)

8 uses

	net/http
		h2_bundle.go#L1059: 	MaxUploadBufferPerConnection int32
		h2_bundle.go#L1076: 		MaxUploadBufferPerConnection: h2.MaxUploadBufferPerConnection,
		h2_bundle.go#L1127: 		http2setDefault(&conf.MaxUploadBufferPerConnection, http2initialWindowSize, math.MaxInt32, 1<<20)
		h2_bundle.go#L1129: 		http2setDefault(&conf.MaxUploadBufferPerConnection, http2initialWindowSize, math.MaxInt32, http2transportDefaultConnFlow)
		h2_bundle.go#L1180: 		conf.MaxUploadBufferPerConnection = int32(h2.MaxReceiveBufferPerConnection)
		h2_bundle.go#L4902: 	if diff := conf.MaxUploadBufferPerConnection - http2initialWindowSize; diff > 0 {
		h2_bundle.go#L8178: 	cc.fr.WriteWindowUpdate(0, uint32(conf.MaxUploadBufferPerConnection))
		h2_bundle.go#L8179: 	cc.inflow.init(conf.MaxUploadBufferPerConnection + http2initialWindowSize)